(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <string.h>
int strcmp()
SYNOPSIS
const char * str1
const char * str2

FUNCTION
Calculate str1 - str2.

INPUTS
str1, str2 - Strings to compare
RESULT
The difference of the strings. The difference is 0, if both are equal, < 0 if str1 < str2 and > 0 if str1 > str2. Note that it may be greater then 1 or less than -1.

NOTES
This function is not part of a library and may thus be called any time.

EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
19.10.1996 aros
Moved all ANSI C function to here and wrote all neccessary header files. Now we have a real basis for our own C lib. Added the functions malloc(), free() and strcasecmp() Made all functions ANSI C compliant
01.08.1996 digulla
Simple string compare function